# create the path variables for the transformation # HINT: Replace PATH accordingly SET pathToJar:("\"%PATH2JAR%\\ALL2ABLJavaClient.jar\"") SET pathToAll:("\"%PATH2ALL%\\specification.all\"") SET patchToMain:("org.adoxx.all2abl.service.webservice.javaclient.ALL2ABLJavaClient") # create the input values for the transformation SET version:("\"v40\"") SET allFileDescription:("\"allDescriptiveText\"") # create the SYSTEM call SET calling:("java -cp " +pathToJar+ " " +patchToMain+ " " +pathToAll+ " " +version+ " " +allFileDescription) # create a temporary file for batch transformation CC "AdoScript" GET_TEMP_FILENAME SETL sBatchFile:(filename + ".bat") CC "AdoScript" FWRITE file:(sBatchFile) text:(calling) # run transformation SYSTEM (sBatchFile) # delete temporary batch file CC "AdoScript" DELETE_FILES (sBatchFile)